projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f732f82
)
(keyboard-quit): Set defining-kbd-macro to nil to
author
Kim F. Storm
<storm@cua.dk>
Mon, 9 Sep 2002 22:45:03 +0000
(22:45 +0000)
committer
Kim F. Storm
<storm@cua.dk>
Mon, 9 Sep 2002 22:45:03 +0000
(22:45 +0000)
cancel defining keyboard macro when applicablex.
lisp/simple.el
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index 79c3e561af6f32ccb89596dd558734513eec7c76..6d1dbe1db7cc62949de9b071507caa8727e0af5a 100644
(file)
--- a/
lisp/simple.el
+++ b/
lisp/simple.el
@@
-3418,6
+3418,7
@@
During execution of Lisp code, this character causes a quit directly.
At top-level, as an editor command, this simply beeps."
(interactive)
(deactivate-mark)
+ (setq defining-kbd-macro nil)
(signal 'quit nil))
(define-key global-map "\C-g" 'keyboard-quit)